From: Varun Wadekar Date: Fri, 21 Dec 2018 18:55:42 +0000 (-0800) Subject: Tegra: remove circular dependency with common_def.h X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=9c2eda0193a8505e47e6f1671c3c0795d876018e;p=project%2Fbcm63xx%2Fatf.git Tegra: remove circular dependency with common_def.h This patch stops including common_def.h from platform_def.h to fix a circular depoendency between them. This means platform_def.h now has to define the linker macros: * PLATFORM_LINKER_FORMAT * PLATFORM_LINKER_ARCH Change-Id: Icd540b1bd32fb37e0e455e9146c8b7f4b314e012 Signed-off-by: Varun Wadekar --- diff --git a/plat/nvidia/tegra/include/platform_def.h b/plat/nvidia/tegra/include/platform_def.h index 106882ac..f68b8989 100644 --- a/plat/nvidia/tegra/include/platform_def.h +++ b/plat/nvidia/tegra/include/platform_def.h @@ -9,10 +9,15 @@ #include #include -#include #include +/* + * Platform binary types for linking + */ +#define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" +#define PLATFORM_LINKER_ARCH aarch64 + /******************************************************************************* * Generic platform constants ******************************************************************************/